home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmOperations
- BackColor = &H00C0C0C0&
- Caption = "Disk Operations"
- ClientHeight = 4110
- ClientLeft = 1140
- ClientTop = 1500
- ClientWidth = 6015
- Height = 4515
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 4110
- ScaleWidth = 6015
- Top = 1155
- Width = 6135
- Begin Frame Frame1
- BackColor = &H00C0C0C0&
- Caption = "System Operations:"
- Height = 2175
- Left = 360
- TabIndex = 5
- Top = 1440
- Width = 4215
- Begin CommandButton cmdPrompt
- Caption = "DOS Prompt"
- Height = 375
- Left = 2160
- TabIndex = 11
- Top = 1440
- Width = 1575
- End
- Begin CommandButton cmdRestart
- Caption = "Restart"
- Height = 375
- Left = 2160
- TabIndex = 9
- Top = 960
- Width = 1575
- End
- Begin CommandButton cmdReboot
- Caption = "Reboot"
- Height = 375
- Left = 2160
- TabIndex = 7
- Top = 480
- Width = 1575
- End
- Begin Label Label5
- BackColor = &H00C0C0C0&
- Caption = "DOS Prompt:"
- Height = 255
- Left = 360
- TabIndex = 10
- Top = 1500
- Width = 1695
- End
- Begin Label Label4
- BackColor = &H00C0C0C0&
- Caption = "Re-Start Windows:"
- Height = 255
- Left = 360
- TabIndex = 8
- Top = 1020
- Width = 1695
- End
- Begin Label Label3
- BackColor = &H00C0C0C0&
- Caption = "Reboot System:"
- Height = 255
- Left = 360
- TabIndex = 6
- Top = 540
- Width = 1695
- End
- End
- Begin CommandButton cmdCopy
- Caption = "DiskCopy..."
- Height = 375
- Left = 2280
- TabIndex = 4
- Top = 840
- Width = 1575
- End
- Begin CommandButton cmdFormat
- Caption = "DiskFormat..."
- Height = 375
- Left = 2280
- TabIndex = 2
- Top = 240
- Width = 1575
- End
- Begin CommandButton cmdCancel
- Caption = "Cancel"
- Height = 375
- Left = 4440
- TabIndex = 0
- Top = 240
- Width = 1215
- End
- Begin Label Label2
- BackColor = &H00C0C0C0&
- Caption = "Copy a Disk:"
- Height = 255
- Left = 480
- TabIndex = 3
- Top = 900
- Width = 1695
- End
- Begin Label Label1
- BackColor = &H00C0C0C0&
- Caption = "Format a Disk:"
- Height = 255
- Left = 480
- TabIndex = 1
- Top = 300
- Width = 1695
- End
- Sub cmdCancel_Click ()
- Unload Me
- End Sub
- Sub cmdCopy_Click ()
- lReturn& = DiskCopy()
- End Sub
- Sub cmdFormat_Click ()
- lReturn& = DiskFormat()
- End Sub
- Sub cmdPrompt_Click ()
- lReturn& = SystemWindow(PROMPT)
- If lReturn& < 32 Then
- MsgBox "Error Code - " & lReturn&
- End If
- End Sub
- Sub cmdReboot_Click ()
- lReturn& = SystemWindow(REBOOT)
- End Sub
- Sub cmdRestart_Click ()
- lReturn& = SystemWindow(RESTART)
- End Sub
- Sub Form_Load ()
- Left = (Screen.Width - Width) / 2 ' Center form horizontally.
- Top = (Screen.Height - Height) / 2 ' Center form vertically.
- End Sub
-